ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.XMP Namespace / ImGearXMPArray<T> Class / Add Method
The object to be added to the end of the ImGearXMPArray<T>.




In This Topic
    Add Method (ImGearXMPArray<T>)
    In This Topic
    Adds an object to the end of the ImGearXMPArray<T>.
    Syntax
    'Declaration
     
    Public Sub Add( _
       ByVal item As T _
    ) 
    'Usage
     
    Dim instance As ImGearXMPArray(Of T)
    Dim item As T
     
    instance.Add(item)
    public void Add( 
       T item
    )
    public: void Add( 
       T* item
    ) 
    public:
    void Add( 
       T^ item
    ) 

    Parameters

    item
    The object to be added to the end of the ImGearXMPArray<T>.
    See Also